home *** CD-ROM | disk | FTP | other *** search
- /* Get status from U-Net and display if information has changed */
-
- options results
- address command
-
- /* Change these if you need to */
- StatusFile = 'S:U-Net.Status'
- Fingercmd = 'finger'
- Window = 'CON:0/0/615/200/Status/AUTO/CLOSE/WAIT/INACTIVE'
-
- /* Don't change these */
- Server = 'status@status.u-net.net'
-
- OldSize = subword(statef(StatusFile),2,1)
- FingerCmd Server '>'StatusFile
- NewSize = subword(statef(StatusFile),2,1)
-
- if NewSize ~= OldSize then 'Type' StatusFile '>'Window
-
- exit
-
-